home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / ntwhich.zip / MAKEFILE < prev    next >
Text File  |  1994-07-24  |  570b  |  23 lines

  1. # makefile for ntwhich
  2. # This is free software and can be modified and redistributed under
  3. # certain conditions described in the file COPYING.TXT. The
  4. # Disclaimer of Warranty and License for this free software are also
  5. # contained in the file COPYING.TXT.
  6. #
  7.  
  8. !include <ntwin32.mak>
  9. FILES=ntwhich.c ntwhich.h makefile ntwhich.exe ntwhich.txt copying.txt
  10. all: ntwhich.exe
  11.  
  12. ntwhich.exe: ntwhich.obj
  13.   $(link) $(conflags) -out:$*.exe $** $(conlibs)
  14.  
  15. .c.obj:
  16.   $(cc) $(cflags) $(cvars) $*.c
  17.  
  18. clean:
  19.     -erase *.obj
  20.  
  21. distrib:
  22.     -pkzip ntwhich.zip $(FILES)
  23.